+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

Find Customers
Reunite Assets
Build Confidence
Maintain Contact

People using the Validentity service

Book a free consultation with one of our experts in data quality

 Book now

Validentity logo Have you received a letter from us?

 I have a letter
const logos = document.getElementsByClassName("clientlogo"); const totalLogos = logos.length; const logosPerGroup = 4; let currentIndex = 0; function showNextLogos() { for (let i = 0; i < totalLogos; i++) { logos[i].classList.remove('show'); } for (let i=currentIndex; i < currentIndex + logosPerGroup; i++) { if(i < totalLogos) { logos[i].classList.add('show'); } } currentIndex=(currentIndex + logosPerGroup) % totalLogos; } showNextLogos(); setInterval(showNextLogos, 5000);

Why choose The Tracing Group


£50M

liability savings made by just one client


£4

spent on remediation can deliver £460.55 per member in liability savings


1.4M

cases reviewed by our tracing team

Latest articles

The Impending Consumer Duty Deadline: A Data-Centric Approach to Financial Services • Read more

Scottish Friendly join Child Trust Fund Register • Read more

Killik & Co join CTF Register • Read more

function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }